-text "Five labels are displayed below: three textual ones on the left, and a bitmap label and a text label on the right. Labels are pretty boring because you can't do anything with them. Click the \"OK\" button when you've seen enough."
frame $w.left
frame $w.right
button $w.ok -text OK -command "destroy $w"
pack $w.msg -side top
pack $w.ok -side bottom -fill x
pack $w.left $w.right -side left -expand yes -padx 10 -pady 10 -fill both
label $w.left.l1 -text "First label"
label $w.left.l2 -text "Second label, raised just for fun" -relief raised